home *** CD-ROM | disk | FTP | other *** search
Text File | 1996-08-16 | 1.5 KB | 48 lines | [TEXT/MPS ] |
- //========================================================================================
- //
- // File: PRGrUtil.h
- // Release Version: $ ODF 1 $
- //
- // Copyright: (c) 1993 - 1996 by Apple Computer, Inc., all rights reserved.
- //
- //========================================================================================
-
- #ifndef PRGRUTIL_H
- #define PRGRUTIL_H
-
- #ifndef FWRECT_H
- #include "FWRect.h"
- #endif
-
- #ifndef FWPOINT_H
- #include "FWPoint.h"
- #endif
-
- //========================================================================================
- // Private Utilities
- //========================================================================================
-
- void SL_API FW_PrivCalcArcPoints(
- const FW_CPlatformRect& rect,
- short angle,
- FW_CPlatformPoint& arcPoint);
-
- //========================================================================================
- // Windows Utilities
- //========================================================================================
-
- #ifdef FW_BUILD_WIN
- void SL_API FW_PrivWinGetDisplayColorInfo(short& planeCount, short& bitsPixel);
- #endif
-
- //========================================================================================
- // Macintosh Utilities
- //========================================================================================
-
- #ifdef FW_BUILD_MAC
- void SL_API FW_PrivMacGetPortTextStyle(TextStyle& theTextStyle);
- void SL_API FW_PrivMacSetPortTextStyle(const TextStyle& theTextStyle);
- #endif
-
- #endif // PRGRUTIL_H
-